home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / hello.pp < prev    next >
Text File  |  2000-01-01  |  134b  |  8 lines

  1. Program Hello;
  2.  
  3. { Enable stack checking on the Amiga, unless you know what you are doing! }
  4. {$S+}
  5. Begin
  6.  WriteLn('Hello world');
  7. end.
  8.